home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
mrpend.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
702b
|
19 lines
/* RCSVER $Id: mrpend.sql,v 1.1 1999-11-19 13:48:46-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
*
* Name: mrpend
* Date: 08/18/1999
* memo: Randy Wood
* Description: Create the mrpend table. This table contains
* unclosed moneyroom counts.
* Changes:
************************************************************************* */
CREATE TABLE mrpend
(
subbatch_seq NUMBER(38), /* Subbatch number of this count */
prpend_indx NUMBER(38), /* Corresponding probe from */
/* the prpend table */
CONSTRAINT pk_mrpend PRIMARY KEY (subbatch_seq)
);